Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
학습 내용 요약
파이썬의 자료 구조, 모듈, 입력과 출력, 에러와 예외, 클래스 문법에 대해 학습하였다.
기본적인 자료 구조와 문법, 파이썬의 모듈들과 import 하는 여러 가지 방법들에 대해 배웠고, 입출력 방법과 에러를 예외처리 하는 다양한 방법을, 클래스의 문법과 활용에 대해 알아보았다.
핵심 개념
모듈을 import 할때엔 파일 구조와 어떤 걸 import 할 지에 대한 정리가 중요하다. import * 이 좋은 방법은 아니다.
예외에도 클래스 계층 구조가 존재하며 일반적으로 Exception 의 예외를 다룬다. 예외 체이닝과 예외에 부가 설명 덧붙이기는 다른 것이다.
파이썬에서 모든 메서드는 실질적으로 virtual 이다.
실습 예제
학습 파일에 첨부
참고 자료
https://docs.python.org/ko/3.14/tutorial/datastructures.html
https://docs.python.org/ko/3.14/tutorial/modules.html
https://docs.python.org/ko/3.14/tutorial/inputoutput.html
https://docs.python.org/ko/3.14/tutorial/errors.html
https://docs.python.org/ko/3.14/tutorial/classes.html
체크리스트